File: /var/www/html/wpbiancoarte/wp-content/plugins/qode-framework/inc/common/templates/row.php
<div class="qodef-row-wrapper col-12 <?php echo esc_attr( $class ); ?>" <?php echo qode_framework_get_inline_attrs( $dependency_data, true ); ?>>
<div class="qodef-row-wrapper-inner">
<div class="row">
<?php
$row_title = $this_object->get_title();
if ( ! empty( $row_title ) ) {
?>
<h3 class="qodef-title qodef-row-title col-12"><?php echo esc_html( $row_title ); ?></h3>
<?php } ?>
<?php
$row_description = $this_object->get_description();
if ( ! empty( $row_description ) ) {
?>
<p class="qodef-description qodef-row-description col-12"><?php echo esc_html( $row_description ); ?></p>
<?php } ?>
<?php
foreach ( $this_object->get_children() as $child ) {
$child->render();
}
?>
</div>
</div>
</div>